home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / apache / conf / ssl.crt / README.CRT < prev    next >
Text File  |  2001-10-16  |  1KB  |  34 lines

  1.  
  2.  This is the ssl.crt/ directory of Apache/mod_ssl
  3.  where PEM-encoded X.509 Certificates for SSL are stored.
  4.  
  5.  Per default the following two files are provided:
  6.  
  7.  o server.crt:
  8.    This is the server certificate for Apache/mod_ssl, configured with the
  9.    SSLCertificateFile directive.  Per default this is a dummy file, but may be
  10.    overwritten by the `make certificate' target under built-time.
  11.  
  12.  o snakeoil.crt:
  13.    This is the _DEMONSTRATION ONLY_ `Snake Oil' dummy server certificate.
  14.    NEVER USE THIS FOR REAL LIFE! INSTEAD USE A REAL CERTIFICATE!
  15.  
  16.  o snakeoil-ca.crt:
  17.    This is the certificate of the _DEMONSTRATION ONLY_ `Snake Oil' Certificate
  18.    Authority. This CA is used to sign the server.crt on `make certificate'
  19.    because self-signed server certificates are not accepted by all browsers.
  20.    NEVER USE THIS CA YOURSELF FOR REAL LIFE! INSTEAD EITHER USE A PUBLICALLY
  21.    KNOWN CA OR CREATE YOUR OWN CA!
  22.  
  23.  o ca-bundle.crt:
  24.    This is a bundle of CA root certificate for Apache/mod_ssl, configurable
  25.    with the SSLCACertificateFile directive. Per default it's disabled but can
  26.    be enabled for client authentication when the clients use certificates
  27.    signed by one of the commonly known public Certificate Authorities.
  28.  
  29.  You can view the ingredients of a particular certificate file in plain text
  30.  by running the command:
  31.  
  32.    $ openssl x509 -noout -text -in <name>.crt
  33.  
  34.